f26bc03cbe85dd390695aeff4b10664741eb76ff,library/src/main/java/com/wdullaer/materialdatetimepicker/time/TimePickerDialog.java,TimePickerDialog,onCreateView,#LayoutInflater#ViewGroup#Bundle#,490
Before Change
}
// Set the theme at the end so that the initialize()s above don't counteract the theme.
mOkButton.setTextColor(mAccentColor);
mCancelButton.setTextColor(mAccentColor);
timePickerHeader.setBackgroundColor(Utils.darkenColor(mAccentColor));
view.findViewById(R.id.time_display_background).setBackgroundColor(mAccentColor);
After Change
view.findViewById(R.id.time_display).setBackgroundColor(mAccentColor);
// Button text can have a different color
if (mOkColor != -1) mOkButton.setTextColor(mOkColor);
else mOkButton.setTextColor(mAccentColor);
if (mCancelColor != -1) mCancelButton.setTextColor(mCancelColor);
else mCancelButton.setTextColor(mAccentColor);